home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # unbundle - Use this shell script to unbundle the Unix bundle files for
- # TeXsis.
- #
- # usage: unbundle [-c]
- #
- # The -c argument is passed to the bundles and causes existing
- # files to be clobbered.
- # (This isn't very useful if it is in the bundles, so send it separately.)
-
- # ---------- first uncompress the files if they were compressed
- #uncompress TEXSIS??.Z
-
- # ---------- then run each bundle through /bin/sh
- a=`/bin/ls TEXSIS??`
- for f in $a
- do
- echo UNPACKING $f...
- /bin/sh $f $1
- done
-
-